dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleJson Structure / OracleJson Constructor / OracleJson Constructor(Byte[],Int32,Int32,Boolean)
The specified byte array.
The starting index to copy data from the array.
The number of bytes to copy from the array.
Specifies whether the byte array is in Unicode encoding or in local encoding.

In This Topic
    OracleJson Constructor(Byte[],Int32,Int32,Boolean)
    In This Topic
    Initializes a new instance of the OracleJson structure with the specified array of bytes, offset in the array, and number of bytes to take.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal bytes() As Byte, _
       ByVal index As Integer, _
       ByVal count As Integer, _
       ByVal isUnicode As Boolean _
    )
    public OracleJson( 
       byte[] bytes,
       int index,
       int count,
       bool isUnicode
    )

    Parameters

    bytes
    The specified byte array.
    index
    The starting index to copy data from the array.
    count
    The number of bytes to copy from the array.
    isUnicode
    Specifies whether the byte array is in Unicode encoding or in local encoding.
    See Also